home *** CD-ROM | disk | FTP | other *** search
/ Revolution - Das Atari CD Magazin 1997 / Revolution - Das Atari CD Magazin 1.iso / software / anwendng / utility / fileedit / fileedit.txt < prev   
Text File  |  1997-01-10  |  3KB  |  63 lines

  1.                       FILEEDIT  -  Philip Taylor, 1991-97
  2.   File Editor for the Atari ST/TT/Falcon computer.
  3.   Written in HiSoft Basic, supplied .TOS file also source code .BAS for people
  4.   who have HiSoft or Power Basic and wish to extend or customise FILEEDIT.
  5.  
  6.   Philosophy
  7.   FILEEDIT is a cursor-driven editor.  It assumes the file being edited can be
  8.   accommodated in memory:  FILEEDIT.TOS itself occupies c. 32kb.
  9.   FILEEDIT handles  *all*  characters  (bytes)  in  the  range  0-255  without
  10.   exception.  It is therefore highly suitable  for editing files which contain
  11.   text but also special characters, e.g.  font files, printer drivers, import-
  12.   export modules, etc.   Bytes  are  displayed  on  the  screen  using  the ST
  13.   character set (1-255) plus  a  special  symbol  for  nul  (0)  viz. a video-
  14.   reversed ASCII 6.  To distinguish characters 158  and 225 the latter is also
  15.   video-reversed.
  16.   Characters (bytes) 32-126 are entered using  normal keys; 1-31 using control
  17.   keys or the numeric keypad; and 0,  127-255 using the numeric keypad.  Users
  18.   with TOS 2 and higher can use instead the Alt key with the numeric keypad.
  19.  
  20.   Use:
  21.   Either drag-and-drop the datafile (TOS 2.06 and higher), or double click the
  22.   program whereupon it prints the following prompt:
  23.     File to edit [?]-
  24.   and normally you enter a filename.  A  duff  filename elicits a list of good
  25.   files.  A Return (or Ctrl-C) terminates the program;  ? prints on the screen
  26.   a summary of commands viz.
  27.  
  28.                F1    = mark one end of block
  29.                F2    = mark other end of block
  30.                F3    = cut block
  31.                F4    = paste block
  32.                F5    = write paste buffer
  33.                Alt T = Top of file
  34.                Alt B = Bottom of file
  35.                Alt F = Find string
  36.                Alt N = Find Next
  37.                Alt R = Replace string
  38.                Alt E = Replace Everywhere
  39.                Alt G = Go to row, column of current screen
  40.                Alt L = report Length of file, and Locate cursor
  41.                Alt I = Insert file
  42.                Alt O = Overlay file
  43.                Alt S = Save file and exit
  44.                Alt A = Save as
  45.                Alt Z = refresh screen
  46.                Undo  = cycle to start of program
  47.                Insert = toggle insert/overwrite mode
  48.                Help = display commands menu
  49.       to enter any ASCII code, press 1-3 numeric keys, then Enter
  50.       to advance cursor 'n' places, press some numeric keys then '+'
  51.       to retard cursor 'n' places, press some numeric keys then '-'
  52.       to amplify a cursor key, use Shift
  53.  
  54.   The  four  cursor  keys,  Backspace,  Delete   and  Home  all  work  in  the
  55.   conventional way.  As Backspace and Delete  are interpreted, use their ASCII
  56.   codes (8,127) to enter these characters into a file.
  57.  
  58.   Find (search) and replace strings are  entered  as  for normal editing - all
  59.   bytes are allowed - except that Return  terminates the string.  To include a
  60.   Return character (ASCII 13) in  the  string,  use the numeric keypad method,
  61.   see above.
  62.                              ptaylor@udcf.gla.ac.uk
  63.